import { PartnersBiddingList } from '@/lib/bidding/vendor/partners-bidding-list' import * as React from "react" import { getServerSession } from 'next-auth' import { authOptions } from "@/app/api/auth/[...nextauth]/route" import { getBiddingListForPartners } from '@/lib/bidding/detail/service' import { Shell } from '@/components/shell' import { DataTableSkeleton } from '@/components/data-table/data-table-skeleton' import { InformationButton } from '@/components/information/information-button' export default async function PartnersBidPage() { // 세션에서 companyId 가져오기 const session = await getServerSession(authOptions) const companyId = session?.user?.companyId if (!companyId) { return (
참여 가능한 입찰 목록을 확인하고 응찰하실 수 있습니다.